home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 10 / The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso / PC_SIGCD / 18 / 5 / DISK1853.ZIP / FILEDATE.BAT < prev    next >
DOS Batch File  |  1989-08-20  |  768b  |  26 lines

  1. echo OFF
  2. if "%1" == "" goto HELP
  3. if NOT "%2" == "" goto USERFILE
  4. echo B
  5. echo Executing command: ASCOUT *.*=%1
  6. echo Displaying files created or updated on %1...
  7. ASCOUT *.*=%1
  8. goto END
  9. :USERFILE
  10. echo B
  11. echo Executing command: ASCOUT %1=%2
  12. echo Displaying files matching %1 created or updated on %2...
  13. ASCOUT %1=%2
  14. goto END
  15. :HELP
  16. echo B
  17. echo To find all files of a date, enter FILEDATE followed by date
  18. echo Example:  FILEDATE 8/15/89
  19. echo To find only certain files of a date, enter filespec followed by date
  20. echo Examples: FILEDATE FILENAME.EXT 8/15/89
  21. echo           FILEDATE *.COM 8/15/89
  22. echo B
  23. echo For further information, see DUHELP help program
  24. :END
  25. echo ON
  26.